home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1999 January - Disc 2
/
Macworld (1999-01) (Disk 2).dmg
/
Serious Demos
/
Symbolic Composer 4.2
/
Environment
/
System
/
MRAC
/
Variations
/
permute
< prev
next >
Wrap
Lisp/Scheme
|
1998-08-11
|
241b
|
9 lines
permute elements
This function enables a source list of to generate multiple lists of all the permutations of the list.
(setq tempo (permute '(36 72 112)))
=> ((36 72 112) (36 112 72) (72 36 112)
(72 112 36) (112 36 72) (112 72 36))